Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

사용자 로그아웃, 탈퇴 기능 구현 #48

Merged
merged 11 commits into from
Feb 7, 2024
Merged

사용자 로그아웃, 탈퇴 기능 구현 #48

merged 11 commits into from
Feb 7, 2024

Conversation

JJ503
Copy link
Member

@JJ503 JJ503 commented Feb 4, 2024

사용자의 탈퇴와 로그아웃에 대해 구현 완료했습니다.
관련 API는 오늘자(2/4) 회의록에 작성해 두었습니다. 해당 부분 참고해 주시면 감사하겠습니다!
크게 어려운 로직은 없으며, 로그아웃과 탈퇴 로직의 흐름은 각각 아래와 같습니다.

로그아웃 로직 흐름

  1. 사용자의 refresh 토큰을 블랙리스트 토큰에 등록
  2. 로그아웃을 하는 디바이스 토큰 비활성화

탈퇴 로직 흐름

  1. 사용자의 삭제 여부를 참으로 변경
  2. 사용자의 refresh 토큰을 블랙리스트 토큰에 등록
  3. 사용자의 등록된 모든 디바이스 토큰 비활성화
  • 다만, 탈퇴 시 개인 정보 처리를 어떻게 할 지에 따라 좀 더 추가될 수도 있을 것 같습니다. 이 부분은 회의 이후에 리팩터링하는 방향으로 진행하겠습니다.
    +) 회의 결과 개인정보처리 방침은 추후에 회의를 진행하기로 했으며, 그때 정해지면 수정하기로 결정했기에 추가 사항 없이 리뷰 진행해 주시면 됩니다!

@JJ503 JJ503 added the feature 기능 추가 label Feb 4, 2024
@JJ503 JJ503 requested a review from jhsseonn February 4, 2024 10:56
@JJ503 JJ503 self-assigned this Feb 4, 2024
Copy link
Member

@jhsseonn jhsseonn left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

리뷰 완료했습니다! 지난주도 고생 많으셨습니다.
크게 수정할 부분은 없어서 코멘트 내용 확인해주시고 바로 머지하셔도 좋을 것 같습니다.

Comment on lines +122 to +129
private User validateAndGetUser(final Long userId, final AuthClaims authClaims) {
if (!userId.equals(authClaims.userId())) {
throw new InvalidTokenException();
}

return userRepository.findById(userId)
.orElseThrow(NotFoundUserException::new);
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

별건 아닌데 저희 메서드 정렬 기준이 필요할까요?
지금까지는 구현 순서대로 정렬하기로 해서 그렇게 진행하고 있는데 코드가 점점 길어지다보니 메서드 정렬도 뭔가 기준이 필요한가? 하는 생각이 들더라구요. 그래서 클래스 내 메서드 정렬 기준을 만드는 건 어떻게 생각하시는지 궁금합니다!

Copy link
Member Author

@JJ503 JJ503 Feb 6, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

저는 보통 public 메서드는 C -> R -> U -> D의 순서로 작성하고, 그 외에는 호출 순서로 작성하고 있습니다.
저도 제안드릴까 고민을 하다, 오히려 익숙해진 메서드 작성 방식이 있으시다면 불편함을 드릴까 해서 제안드리지 못했습니다.
그래서 메서드 정렬 기준을 만드는 것에 대해선 찬성합니다!
혹시 생각해 보시거나 적용하신 메서드 정렬 기준이 있으실까요?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

저는 이번에 서비스 클래스에서 CRUD 순서대로 메서드 정렬 후에 검증 메서드들을 아예 crud 메서드 아래로 다 빼서 정리를 해봤습니다. 순서는 자주 호출되는 순서대로 정렬했습니다. 그런데 구글링 해보니 읽는 사람이 편하게 메서드끼리 논리적 응집도를 높이는 방법도 있더라구요!
어떤 방법이 더 좋을 것 같으신가요?

Copy link
Member Author

@JJ503 JJ503 Feb 6, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

저는 굳이 검증 메서드를 하위로 빼는 것을 선호하지 않긴 합니다.
왜냐하면, 보통 코드리뷰를 할 때 위에서부터 코드를 읽게 되는데, 말씀해 주신 방식대로 한다면 계속 스크롤을 왔다 갔다 해야 하는 번거로움이 있으며 기존 있던 메서들를 새로운 메서드에서 사용하게 된다면 이에 대한 순서를 계속해 고려해야 하기 때문입니다.
그래서 저는 보통 호출되는 순서대로 작성했었습니다. 하단에서 상단의 메서드를 사용하더라도 이미 본 코드기에 이해하기 편하기도 하고요!

그런데, 메서드 정렬을 논리적 응집도를 사용하게 된다면 어떤 형식으로 되는 것인지 잘 모르겠는데 설명을 좀 더 해주실 수 있을까요?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

논리적 응집도를 높이는 방식이 호출 순서대로 작성하는 방식입니다. 예를 들어 update 메서드에서 차례대로 getUser, getGoal, validateTeamsToUpdate 함수를 호출한다면 update 메서드에서 아래에 세가지 함수를 순서대로 정렬하는 것입니다. 가독성을 위해 하나의 큰 메서드를 기준으로 해서 호출되는 메서드를 주위에 정렬하는 방식으로 이해했습니다.
정리를 깔끔하게 하고자 하는 마음에 검증 메서드를 아예 하위로 빼봤는데 가독성이 더 중요하니 하던대로 호출 순서대로 정렬을 할까요?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

저희가 슬랙에서 이야기한 결과 메서드 작성 순서는 큰 형식은 CRUD 순으로 작성하는 것으로 결정되었습니다.
또한, private과 같이 public 메서드들에서 사용되는 메서드들은 모두 호출 순서로 public 메서드 사이에 위치하도록 결정되었습니다.

@ToString
@Table
public class BlackListToken {
@Id
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

개행이 필요할 것 같네요!

Copy link

sonarcloud bot commented Feb 6, 2024

Quality Gate Passed Quality Gate passed

The SonarCloud Quality Gate passed, but some issues were introduced.

23 New issues
0 Security Hotspots
97.6% Coverage on New Code
0.0% Duplication on New Code

See analysis details on SonarCloud

@JJ503 JJ503 merged commit 46a1e6f into develop Feb 7, 2024
2 checks passed
@JJ503 JJ503 deleted the feat/47 branch February 7, 2024 10:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature 기능 추가
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

[Feat] 사용자 로그아웃, 탈퇴 기능 구현
2 participants